home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / libgcc / __negdi2.S < prev    next >
Encoding:
Text File  |  2004-11-17  |  262 b   |  22 lines

  1. /*
  2.  * arch/i386/libgcc/__negdi2.S
  3.  *
  4.  * 64-bit negation
  5.  */
  6.     
  7.     .text
  8.     .align 4
  9.     .globl __negdi2
  10.     .type __negdi2,@function
  11. __negdi2:
  12. #ifndef REGPARM
  13.     movl 4(%esp),%eax
  14.     movl 8(%esp),%edx
  15. #endif
  16.     negl %edx
  17.     negl %eax
  18.     sbbl $0,%edx
  19.     ret
  20.  
  21.     .size __negdi2,.-__negdi2
  22.